home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1999 December / Software of the Month - Ultimate Collection Shareware 267.iso / pc / Somc.dir / 00001_Script_1 next >
Text File  |  1999-09-03  |  716b  |  28 lines

  1. on startMovie
  2.   
  3.   --  hide the Setup and Quit glows
  4.   set the visible of sprite 2 to false
  5.   set the visible of sprite 3 to false
  6.   
  7.   --  initialize an empty global variable for the Setup button
  8.   global SETUP
  9.   set SETUP to ""
  10.   
  11. end
  12.  
  13.  
  14. -- custom handler for swapping the screenshot and text
  15. on doSwap SCREENSHOTNAME, TEXTNAME
  16.   set the memberNum of sprite 6 to the memberNum of member SCREENSHOTNAME
  17.   set the memberNum of sprite 7 to the memberNum of member TEXTNAME
  18.   updateStage
  19. end
  20.  
  21.  
  22. -- custom handler for changing the cursor
  23. on doCursor
  24.   set CURSOR1 to the memberNum of member "Cursor"
  25.   set CURSOR1MASK to the memberNum of member "CursorMask"
  26.   cursor [CURSOR1, CURSOR1MASK]
  27. end
  28.